home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Saar AMOK 2
/
Saar AMOK II - Oktober 1994 (1994)(Kreativ Marketing)(DE)[!][I-7598].iso
/
disks
/
651_700
/
653
/
carcosts
/
install.test
< prev
next >
Wrap
Text File
|
1993-11-01
|
2KB
|
79 lines
; Install CarCosts
(set @default-dest "")
(set destination
(askdir
(prompt "Choose directory to install CarCosts")
(help "Choose a destination partition or directory "
"for CarCosts. The install "
"program will create a directory called 'CarCosts' "
"in the location you choose and copy the "
"program files to it.")
(disk)
(default "ram:")
)
)
(set dest1 (tackon destination "CarCosts"))
(message "\n\nCarCosts will be installed in " destination)
(makedir
(prompt "I'll create the directory " destination)
(infos)
dest1
)
(copyfiles
(prompt "I copy the program")
(pattern "(CarCosts#?|#?.guide)")
(dest dest1)
(source "")
(confirm)
(help @copyfiles-help)
(infos)
)
(set answer
(askchoice
(prompt "Install catalog file. Default is German.")
(choices "No" "Install English" "Install Nederlands")
(default 1)
(help "You should install the catalog with your\n"
"prefered language."
)
)
)
(if (<> answer 0)
(
(if (= answer 1)
(set rdest "locale:catalogs/english")
(set ssource "catalogs/english")
)
(if (= answer 2)
(set rdest "locale:catalogs/nederlands")
(set ssource "catalogs/nederlands")
)
(copyfiles
(prompt "Copy catalog to " rdest)
(pattern "#?.catalog")
(dest rdest)
(source ssource)
(confirm)
(help @copyfiles-help)
(infos)
)
)
)
(message "\nNow you are ready to use CarCosts.\n\nYou have to install MUI "
"before you can use the program.\n"
)